home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-03-19 | 1.5 KB | 55 lines | [TEXT/MPS ] |
- #
- # File: Results Express.vutool 2.0.1
- #
- # Contains: Contains the V.U. external tool declaration for V.U. 2.1 and after
- #
- # Written by: RV
- #
- # Copyright: © 1994-1997 by Apple Computer, Inc., all rights reserved.
- #
- # Change History (most recent first):
- #
- # Version Date Who Comments
- # ======= ======== === ===============
- # 1.1.0 02/12/97 JAS Added 'vers' resources to library.
- # These should always match tool version when tool is revved.
- # 7/19/94 RV xxx put comment here xxx
- #
- # To Do:
- #
-
- #######################################################################################
- # Results Express external tool declaration
- #
- #######################################################################################
- Tool ResultsExpress s:'RETL'
-
- begin
-
- # Services specific to VUTool:
-
- Service "NewRecord"( 'integer',
- 'undefined',
- 'list' ) return 'string';
-
- Service "SetFields"( 'integer',
- 'undefined',
- 'list' ) return 'string';
-
- Service "Consolidate"( 'undefined',
- 'string',
- 'symbol',
- 'symbol' ) return 'list';
-
- # Services common to all Virtual User external tools:
-
- Service "Initialize"( 'undefined' ); # pass TRUE for target, FALSE for host
- Service "Cancel"( 'string' );
- Service "GetToolServices"() return 'list';
- Service "GetToolVersion"() return 'list';
- Service "Poll"( 'string' ) return 'string';
- Service "ServiceSupported"( 'string' ) return 'undefined';
- Service "Quit"();
-
- end;
-